home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
mike40c.arc
/
GETMODE.C
< prev
next >
Wrap
Text File
|
1986-10-23
|
240b
|
17 lines
#include <dos.h>
get_mode() /* Check for Monocrome or graphics */
{
union REGS REG;
REG.h.ah = 15;
REG.h.bh = 00;
REG.h.ch = 0;
REG.h.cl = 0;
int86(0x10, ®, ®);
return(REG.h.al);
}